home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINPROGS / ECJDLL11.ZIP / EXAMPLE.ZIP / MAKEFILE < prev    next >
Text File  |  1993-08-17  |  300b  |  12 lines

  1. FLAGS = -w-par -W -1 -ms
  2.  
  3. showjpg.exe : showjpg.obj showjpg.def showjpg.res
  4.      bcc $(FLAGS) -eshowjpg.exe showjpg.obj
  5.      rc -t showjpg.res
  6.  
  7. showjpg.obj : showjpg.c showjpg.h
  8.      bcc $(FLAGS) -c showjpg.c
  9.  
  10. showjpg.res : showjpg.rc showjpg.h
  11.      rc -r -ic:\borlandc\include showjpg.rc
  12.